var max=0;function AsylumNavLink(parentId,linkId,order,href,linkText,target,width)
{this.linkId=linkId;this.parentId=parentId;this.order=order;this.href=href;this.linkText=linkText;this.target=target;this.width=width;};function AsylumNav(contId,layout,offset)
{this.menuCont=document.getElementById(contId);this.layout=layout;this.offset=(typeof offset=='undefined'?'Right':offset);this.menuItems=new Object();this.clickUnderCreated=false;};AsylumNav.prototype.AddLink=function(parentId,linkId,order,href,linkText,target,width)
{if(typeof this.menuItems[parentId]=='undefined')
{this.menuItems[parentId]=new Object();}
if(typeof width=="undefined")width=false;this.menuItems[parentId][linkId]=new AsylumNavLink(parentId,linkId,order,href,linkText,target,width);if(order>max){max=order;}};AsylumNav.prototype.CreateLevel=function(levelId,idPrefix)
{obj=this;div=document.createElement('div');div.id=idPrefix+levelId;div.levelId=levelId;div.idPrefix=idPrefix;div.className='levelDiv';div.onmouseout=function(e){obj.HideLevel(e);};div.subLevels=new Object();if(levelId!='0')
{div.style.visibility='hidden';div.className+=' subLevel';div.style.position='absolute';}
else
{div.className+=' topLevel';}
if(this.layout=='Horizontal')
{div.style.position='absolute';}
div.style.zIndex=10;if(this.menuCont){this.menuCont.appendChild(div);}
for(i=0;i<=max;i++){for(linkId in this.menuItems[levelId]){if(this.menuItems[levelId][linkId].order==i){linkDiv=document.createElement('div');linkDiv.id='asylumNavLinkDiv'+linkId;linkDiv.linkId=linkId;linkDiv.levelId=levelId;linkDiv.className='linkDiv';if(levelId=="0"){linkDiv.className+=" topLevel";if(this.menuItems[levelId][linkId].width){linkDiv.style.width=this.menuItems[levelId][linkId].width+"px";}}
div.appendChild(linkDiv);navLink=this.menuItems[levelId][linkId];a=document.createElement('a');a.id='asylumNavLink'+linkId;a.linkType='navMenu';a.linkId=linkId;a.levelId=navLink.parentId;a.parentId=navLink.parentId;if(navLink.href==''||navLink.href=='#')
{a.href='#';a.target='';a.style.cursor='default';}
else
{a.href=navLink.href;a.target=navLink.target;}
if(this.layout=='Vertical')
{a.innerHTML=navLink.linkText;}
else
{a.innerHTML=navLink.linkText.split(' ').join('&nbsp;');}
a.onmouseover=function(){obj.ShowLevel(this);};linkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';linkDiv.className+=' activeLink';topLink=this.GetTopLevelLink(navLink);if(typeof this.menuItems[topLink.linkId]!='undefined'&&navLink.levelId!='0')
{try{document.getElementById('asylumNavLink'+topLink.linkId).className+=' activeLink';document.getElementById('asylumNavLinkDiv'+topLink.linkId).className+=' activeLink';}catch(e){}}
if(document.getElementById("clickUnder")!=null)
{this.CreateClickUnder(topLink,true);}}
else
{}
if(typeof this.menuItems[linkId]!='undefined')
{div.subLevels[linkId]=true;}}}}
return div;};AsylumNav.prototype.Construct=function()
{if(this.menuCont==null){return;}
var obj=this;for(levelId in this.menuItems)
{this.CreateLevel(levelId,'asylumNavLevel');}
if(this.layout=='Vertical')
{if(typeof document.getElementById('tplMainSectors')!=null)
{ms=document.getElementById('tplMainSectors');ms.style.height=ms.offsetHeight;}}
else
{this.menuCont.style.height=document.getElementById('asylumNavLevel0').offsetHeight+'px';}
this.CreateBreadCrumbs();};AsylumNav.prototype.CreateClickUnder=function(navLink,active)
{if(typeof doneClickUnder=="undefined"){doneClickUnder=true;}else{return;}
if(document.getElementById("clickUnder")==null)return;obj=this;var linkId;if(this.layout=='Vertical')
{clickDiv=document.createElement('div');clickDiv.id="clickUnder";document.getElementById("clickUnder").appendChild(clickDiv);linkDiv=document.getElementById('asylumNavLinkDiv'+navLink.linkId);linkDiv.appendChild(clickDiv);}
else
{clickDiv=document.getElementById("clickUnder");}
var linkCount=0;for(linkId in this.menuItems[navLink.linkId])
{linkCount++;clickLinkDiv=document.createElement('div');clickLinkDiv.className='clickLinkDiv';clickLink=this.menuItems[navLink.linkId][linkId];txt=document.createTextNode(' ');clickDiv.appendChild(txt);a=document.createElement('a');a.id='asylumNavClickLink'+clickLink.linkId;a.className='clickLink';a.linkType='clickLink';a.linkId=linkId;a.levelId=clickLink.parentId;a.parentId=clickLink.parentId;if(clickLink.href==''||clickLink.href=='#'){a.href='#';a.target='';a.style.cursor='default';}else{a.href=clickLink.href;a.target=clickLink.target;}
if(this.layout=="Vertical"){a.innerHTML=clickLink.linkText;}else if(this.layout=="Horizontal-SubMenu"){if(clickLink.linkText.substring(0,1)==" "){a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}else{a.innerHTML=clickLink.linkText;}}else{a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}
a.onmouseover=function(){obj.HideAllLevels();obj.ShowLevel(this);};a.onmouseout=function(e){obj.HideLevel(e);};clickLinkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';clickLinkDiv.className+=' activeLink';}
clickDiv.appendChild(clickLinkDiv);txt=document.createTextNode(' ');clickDiv.appendChild(txt);}
if(linkCount==0||active==false)
{clickDiv.className='inactiveClickUnder';}
else
{clickDiv.className='activeClickUnder';}};AsylumNav.prototype.GetTopLevelLink=function(navLink)
{if(navLink.parentId=='0')
{return(navLink);}
while(1==1)
{navLink=this.GetParentLink(navLink);if(typeof navLink.parentId!='undefined')
{if(navLink.parentId=='0')
{break;}}}
return(navLink);};AsylumNav.prototype.GetParentLink=function(navLink)
{var levelId;var linkId;for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{parNavLink=this.menuItems[levelId][linkId];if(parNavLink.linkId==navLink.parentId)
{return(parNavLink);}}}};AsylumNav.prototype.GetXPos=function(obj)
{var curleft=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curleft+=obj.offsetLeft;obj=obj.offsetParent;}}
else if(obj.x)
curleft+=obj.x;return curleft;};AsylumNav.prototype.GetYPos=function(obj)
{var curtop=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curtop+=obj.offsetTop;obj=obj.offsetParent;}}
else if(obj.y)
curtop+=obj.y;return curtop;};AsylumNav.prototype.ShowLevel=function(el)
{levelId=el.linkId;this.currentLevelId=levelId;window.clearTimeout(this.timeoutId);this.HideSubLevels(el.levelId);if(typeof this.menuItems[levelId]=='undefined')
{return;}
if(el.linkType=='clickLink')
{eP=document.getElementById('asylumNavClickLink'+el.linkId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'subLevel','clickUnderSubLevel');}
else
{eP=document.getElementById('asylumNavLink'+levelId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'clickUnderSubLevel','subLevel');}
if(eP.parentId=='0')
{switch(this.offset)
{case'Right':offsetX=(eP.offsetWidth);offsetY=0;break;case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;case'Bottom':offsetX=0;offsetY=eP.offsetHeight;eL.style.minWidth=eP.offsetWidth;break;}}
else
{switch(this.offset)
{case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;default:offsetX=(eP.offsetWidth);offsetY=0;break;}}
pX=this.GetXPos(eP);pY=this.GetYPos(eP);lX=pX+offsetX;lY=pY+offsetY;eL.style.position='absolute';$(eL).css({left:lX,top:lY});eL.style.visibility='visible';};AsylumNav.prototype.GetLevelWidth=function(levelId)
{maxWidth=0;for(linkId in this.menuItems[levelId])
{a=document.getElementById('asylumNavLink'+linkId);thisWidth=a.offsetWidth;if(thisWidth>maxWidth)
{maxWidth=thisWidth;}}
return(maxWidth);};AsylumNav.prototype.HideSubLevels=function(levelId,omitLevelId)
{if(typeof omitLevelId=='undefined')
{omitLevelId='0';}
eL=document.getElementById('asylumNavLevel'+levelId);for(levelId in eL.subLevels)
{this.HideSubLevels(levelId);if(levelId!=omitLevelId)
{eL=document.getElementById('asylumNavLevel'+levelId);eL.style.visibility='hidden';}}};AsylumNav.prototype.HideLevel=function(e)
{window.clearTimeout(this.timeoutId);if(!e)e=window.event;var el=(e.relatedTarget)?e.relatedTarget:e.toElement;var obj=this;var funct=function(){obj._HideLevel(el);};this.timeoutId=window.setTimeout(funct,1000);};AsylumNav.prototype._HideLevel=function(el)
{if(!el||el.id.substr(0,9)!='asylumNav'||(el.id.substr(0,9)=='asylumNav'&&el.style.visibility=='hidden'))
{this.HideAllLevels();}};AsylumNav.prototype.HideAllLevels=function()
{for(levelId in this.menuItems)
{if(levelId!='0')
{eL=document.getElementById('asylumNavLevel'+levelId);if(eL!=null)eL.style.visibility='hidden';}}};AsylumNav.prototype.CreateBreadCrumbs=function()
{if(document.getElementById("breadCrumbs")!=null)
{crumbsCont=document.getElementById("breadCrumbs");crumbsCont.style.display='none';crumbs='';homeLink='';for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{navLink=this.menuItems[levelId][linkId];if(homeLink=='')
{homeLink='<a href="'+navLink.href+'" target="'+navLink.target+'">'
+navLink.linkText+'</a> &gt; ';}
if(linkId==pageId)
{i=0;parNavLink=this.GetParentLink(navLink);while(typeof parNavLink=='object')
{i++;crumbs='<a href="'+parNavLink.href+'" target="'+parNavLink.target+'">'
+parNavLink.linkText+'</a> &gt; '+crumbs;parNavLink=this.GetParentLink(parNavLink);}
if(i>1)
{crumbsCont.style.display='block';crumbsCont.innerHTML=homeLink+crumbs+'<span class="activeCrumb">'+navLink.linkText+'</span>';}
return(true);}}}}};function RemoveClass(el,className)
{var replaceName=(el.className.match(' '+className)?' '+className:className);el.className=el.className.replace(replaceName,'');};function AddClass(el,className)
{RemoveClass(el,className);el.className+=' '+className;};function SwapClass(el,removeClassName,addClassName)
{RemoveClass(el,removeClassName);AddClass(el,addClassName);};;$(function() {for (var i in tasks) {window.setTimeout(tasks[i], 0);}});function initMenu(){};$(function(){$("#navMenu").navmenu({pageInfo:{"a392443":{"P":0,"ID":441644,"C":392443,"O":0,"U":"http:\/\/www.etgraphics.co.nz\/","N":"Home","T":"_top","R":"","RT":"_blank"},"a392444":{"P":392443,"ID":394392,"C":392444,"O":"1","U":"http:\/\/www.etgraphics.co.nz\/graphic-design-digital.html","N":"About>","T":"_top","R":"","RT":"_blank"},"a542915":{"P":392444,"ID":542916,"C":542915,"O":"1","U":"http:\/\/www.etgraphics.co.nz\/mission-statement.html","N":"Mission Statement","T":"_top","R":"","RT":"_blank"},"a469769":{"P":392444,"ID":469773,"C":469769,"O":"2","U":"http:\/\/www.etgraphics.co.nz\/community-support-digital.html","N":"Community Support","T":"_top","R":"","RT":"_blank"},"a518269":{"P":392443,"ID":518274,"C":518269,"O":"3","U":"http:\/\/www.etgraphics.co.nz\/xtra-issues-spam.html","N":"Xtra Email Issues","T":"_top","R":"","RT":"_blank"},"a492898":{"P":392443,"ID":493170,"C":492898,"O":"8","U":"http:\/\/www.etgraphics.co.nz\/promotional-banners-banner-wellington-kapiti-paraparaumu.html","N":"Banners","T":"_top","R":"","RT":"_blank"},"a456603":{"P":392443,"ID":456604,"C":456603,"O":"9","U":"http:\/\/www.etgraphics.co.nz\/digital-printing-offset.html","N":"Blog","T":"_top","R":"","RT":"_blank"},"a392459":{"P":392443,"ID":394405,"C":392459,"O":"10","U":"http:\/\/www.etgraphics.co.nz\/brochure-leaflet-flyer.html","N":"Brochures","T":"_top","R":"","RT":"_blank"},"a392446":{"P":392443,"ID":394394,"C":392446,"O":"11","U":"http:\/\/www.etgraphics.co.nz\/order-business-cards.html","N":"Business Cards","T":"_top","R":"","RT":"_blank"},"a506126":{"P":392443,"ID":506127,"C":506126,"O":"12","U":"http:\/\/www.etgraphics.co.nz\/order-calendars-online.html","N":"Calendars","T":"_top","R":"","RT":"_blank"},"a464828":{"P":392443,"ID":465168,"C":464828,"O":"13","U":"http:\/\/www.etgraphics.co.nz\/order-prints-canvas.html","N":"Canvas Prints","T":"_top","R":"","RT":"_blank"},"a535821":{"P":392443,"ID":535823,"C":535821,"O":"14","U":"http:\/\/www.etgraphics.co.nz\/cherry-picker-hire.html","N":"Cherry Picker Hire","T":"_top","R":"","RT":"_blank"},"a392453":{"P":392443,"ID":394411,"C":392453,"O":"15","U":"http:\/\/www.etgraphics.co.nz\/contact-us.html","N":"Contact Us ","T":"_top","R":"","RT":"_blank"},"a506762":{"P":392443,"ID":506765,"C":506762,"O":"16","U":"http:\/\/www.etgraphics.co.nz\/photocopying-laser-printing.html","N":"Copy Shop","T":"_top","R":"","RT":"_blank"},"a577490":{"P":392443,"ID":577632,"C":577490,"O":"17","U":"http:\/\/www.etgraphics.co.nz\/election-signs-election-banners.html","N":"Election Signs","T":"_top","R":"","RT":"_blank"},"a516849":{"P":392443,"ID":517172,"C":516849,"O":"18","U":"http:\/\/www.etgraphics.co.nz\/frequently-asked-questions.html","N":"FAQ","T":"_top","R":"","RT":"_blank"},"a595041":{"P":392443,"ID":595042,"C":595041,"O":"19","U":"http:\/\/www.etgraphics.co.nz\/feedback.html","N":"Feedback","T":"_top","R":"","RT":"_blank"},"a623727":{"P":392443,"ID":624331,"C":623727,"O":"20","U":"http:\/\/www.etgraphics.co.nz\/free-google-business-Listing.html","N":"Google Free Listing","T":"_top","R":"","RT":"_blank"},"a392455":{"P":392443,"ID":394409,"C":392455,"O":"21","U":"http:\/\/www.etgraphics.co.nz\/graphic-design-designers.html","N":"Graphic Design","T":"_top","R":"","RT":"_blank"},"a392447":{"P":392443,"ID":394395,"C":392447,"O":"22","U":"http:\/\/www.etgraphics.co.nz\/order-greeting-cards.html","N":"Greeting Cards","T":"_top","R":"","RT":"_blank"},"a392460":{"P":392443,"ID":394404,"C":392460,"O":"23","U":"http:\/\/www.etgraphics.co.nz\/business-stationery-letterhead.html","N":"Letterhead","T":"_top","R":"","RT":"_blank"},"a392456":{"P":392443,"ID":394408,"C":392456,"O":"24","U":"http:\/\/www.etgraphics.co.nz\/mail-merge-directmarketing.html","N":"Mail Merge Marketing","T":"_top","R":"","RT":"_blank"},"a462416":{"P":392443,"ID":462418,"C":462416,"O":"25","U":"http:\/\/www.etgraphics.co.nz\/marketing-cards-promotional.html","N":"Marketing\/Promotional Cards","T":"_top","R":"","RT":"_blank"},"a567370":{"P":462416,"ID":567371,"C":567370,"O":"1","U":"http:\/\/www.etgraphics.co.nz\/easter-promotion-cards-eastercards-easter-greeting-cards.html","N":"Easter Cards","T":"_top","R":"","RT":"_blank"},"a483028":{"P":392443,"ID":483029,"C":483028,"O":"26","U":"http:\/\/www.etgraphics.co.nz\/order-motivational-cards.html","N":"Motivational Cards","T":"_top","R":"","RT":"_blank"},"a462389":{"P":392443,"ID":462390,"C":462389,"O":"27","U":"http:\/\/www.etgraphics.co.nz\/order-note-pads.html","N":"Note Pads","T":"_top","R":"","RT":"_blank"},"a499759":{"P":392443,"ID":499768,"C":499759,"O":"28","U":"http:\/\/www.etgraphics.co.nz\/online-ordering-help.html","N":"Online Ordering Help","T":"_top","R":"","RT":"_blank"},"a459313":{"P":392443,"ID":459323,"C":459313,"O":"29","U":"http:\/\/www.etgraphics.co.nz\/online-print-ordering.html","N":"Order Print Online","T":"_top","R":"","RT":"_blank"},"a461812":{"P":392443,"ID":462050,"C":461812,"O":"30","U":"http:\/\/www.etgraphics.co.nz\/photography-sports-photography.html","N":"Photography>","T":"_top","R":"","RT":"_blank"},"a506440":{"P":461812,"ID":506448,"C":506440,"O":"1","U":"http:\/\/www.etgraphics.co.nz\/order-sports-team.html","N":"Team Photographs","T":"_top","R":"","RT":"_blank"},"a392458":{"P":392443,"ID":394406,"C":392458,"O":"31","U":"http:\/\/www.etgraphics.co.nz\/large-digital-photographic.html","N":"Posters>","T":"_top","R":"","RT":"_blank"},"a588197":{"P":392458,"ID":588198,"C":588197,"O":"1","U":"http:\/\/www.etgraphics.co.nz\/order-print-your-own-poster.html","N":"Posters on line","T":"_top","R":"","RT":"_blank"},"a537967":{"P":392443,"ID":537968,"C":537967,"O":"32","U":"http:\/\/www.etgraphics.co.nz\/printing-digital-printers-wellington-paraparaumu-NZ.html","N":"Printing Digital","T":"_top","R":"","RT":"_blank"},"a537965":{"P":392443,"ID":537966,"C":537965,"O":"33","U":"http:\/\/www.etgraphics.co.nz\/printing-offset-wellington-Paraparaumu.html","N":"Printing Offset ","T":"_top","R":"","RT":"_blank"},"a543475":{"P":392443,"ID":543476,"C":543475,"O":"34","U":"http:\/\/www.etgraphics.co.nz\/private-sale-signs-home-sell-real-estate-signs-Akld-Well-Chch.html","N":"Private Sale Signs","T":"_top","R":"","RT":"_blank"},"a392445":{"P":392443,"ID":394393,"C":392445,"O":"35","U":"http:\/\/www.etgraphics.co.nz\/order-real-estate-signs-marketing.html","N":"Real Estate Marketing>","T":"_top","R":"","RT":"_blank"},"a484650":{"P":392445,"ID":484651,"C":484650,"O":"1","U":"http:\/\/www.etgraphics.co.nz\/order-real-estate-headline.html","N":"A Good Headline","T":"_top","R":"","RT":"_blank"},"a506829":{"P":392445,"ID":506876,"C":506829,"O":"2","U":"http:\/\/www.etgraphics.co.nz\/marketing-secrets-real.html","N":"A Listing Secret","T":"_top","R":"","RT":"_blank"},"a466541":{"P":392445,"ID":466542,"C":466541,"O":"3","U":"http:\/\/www.etgraphics.co.nz\/order-signs-online.html","N":"Agency Signs - Generic","T":"_top","R":"","RT":"_blank"},"a467084":{"P":466541,"ID":467085,"C":467084,"O":"1","U":"http:\/\/www.etgraphics.co.nz\/order-personalised-real.html","N":"Custom Templates","T":"_top","R":"","RT":"_blank"},"a471674":{"P":392445,"ID":471721,"C":471674,"O":"4","U":"http:\/\/www.etgraphics.co.nz\/order-real-estate.html","N":"Calendars","T":"_top","R":"","RT":"_blank"},"a474831":{"P":392445,"ID":484383,"C":474831,"O":"5","U":"http:\/\/www.etgraphics.co.nz\/database-marketing-database.html","N":"Database Marketing","T":"_top","R":"","RT":"_blank"},"a515152":{"P":392445,"ID":515154,"C":515152,"O":"6","U":"http:\/\/www.etgraphics.co.nz\/order-halloween-cards.html","N":"Halloween Cards","T":"_top","R":"","RT":"_blank"},"a482221":{"P":392445,"ID":482618,"C":482221,"O":"7","U":"http:\/\/www.etgraphics.co.nz\/order-inspirational-cards.html","N":"Inspirational Cards","T":"_top","R":"","RT":"_blank"},"a579782":{"P":392445,"ID":579792,"C":579782,"O":"8","U":"http:\/\/www.etgraphics.co.nz\/mothers-day-marketing.html","N":"Mothers Day Prospecting","T":"_top","R":"","RT":"_blank"},"a567414":{"P":392445,"ID":567418,"C":567414,"O":"9","U":"http:\/\/www.etgraphics.co.nz\/real-estate-photo.html","N":"Photo Signs Special Deal","T":"_top","R":"","RT":"_blank"},"a441642":{"P":392445,"ID":441643,"C":441642,"O":"10","U":"http:\/\/www.etgraphics.co.nz\/order-private-sale.html","N":"Private Sale Signs","T":"_top","R":"","RT":"_blank"},"a459798":{"P":392445,"ID":459800,"C":459798,"O":"11","U":"http:\/\/www.etgraphics.co.nz\/order-personal-profile.html","N":"Profile Cards","T":"_top","R":"","RT":"_blank"},"a507572":{"P":392445,"ID":507648,"C":507572,"O":"12","U":"http:\/\/www.etgraphics.co.nz\/order-real-estate-notepads.html","N":"Real Estate Note Pads","T":"_top","R":"","RT":"_blank"},"a567401":{"P":392445,"ID":567402,"C":567401,"O":"13","U":"http:\/\/www.etgraphics.co.nz\/real-estate-marketing-cards.html","N":"Marketing Cards","T":"_top","R":"","RT":"_blank"},"a505936":{"P":392445,"ID":506120,"C":505936,"O":"14","U":"http:\/\/www.etgraphics.co.nz\/ian-grace-mr.html","N":"Marketing Guru - Ian Grace","T":"_top","R":"","RT":"_blank"},"a465212":{"P":392443,"ID":465328,"C":465212,"O":"36","U":"http:\/\/www.etgraphics.co.nz\/replacement-policy-real.html","N":"Replacement Policy","T":"_top","R":"","RT":"_blank"},"a392448":{"P":392443,"ID":394396,"C":392448,"O":"37","U":"http:\/\/www.etgraphics.co.nz\/promotional-signage-outdoor-signs-kapiti-wellington-paraparaumu.html","N":"Signs &amp; Signage>","T":"_top","R":"","RT":"_blank"},"a518260":{"P":392448,"ID":518262,"C":518260,"O":"1","U":"http:\/\/www.etgraphics.co.nz\/banner-signs-big-banners.html","N":"Banner Signs","T":"_top","R":"","RT":"_blank"},"a392463":{"P":392448,"ID":394398,"C":392463,"O":"2","U":"http:\/\/www.etgraphics.co.nz\/indoor-outdoor-billboards.html","N":"Billboards","T":"_top","R":"","RT":"_blank"},"a392467":{"P":392448,"ID":394402,"C":392467,"O":"3","U":"http:\/\/www.etgraphics.co.nz\/backlit-lightbox-illuminated.html","N":"Lightboxes","T":"_top","R":"","RT":"_blank"},"a392464":{"P":392448,"ID":394399,"C":392464,"O":"4","U":"http:\/\/www.etgraphics.co.nz\/outdoor-billboards-corflute.html","N":"Outdoor Signs","T":"_top","R":"","RT":"_blank"},"a468134":{"P":392448,"ID":468160,"C":468134,"O":"5","U":"http:\/\/www.etgraphics.co.nz\/pavement-sign-pavement.html","N":"Pavement Signs","T":"_top","R":"","RT":"_blank"},"a392468":{"P":392448,"ID":394403,"C":392468,"O":"6","U":"http:\/\/www.etgraphics.co.nz\/point-sale-aids.html","N":"Point-of-Sale Aids","T":"_top","R":"","RT":"_blank"},"a572302":{"P":392448,"ID":572304,"C":572302,"O":"7","U":"http:\/\/www.etgraphics.co.nz\/private sale signs.html","N":"Private Sale Signs","T":"_top","R":"","RT":"_blank"},"a392462":{"P":392448,"ID":394397,"C":392462,"O":"8","U":"http:\/\/www.etgraphics.co.nz\/order-safety-signs.html","N":"Safety Signs","T":"_top","R":"","RT":"_blank"},"a392465":{"P":392448,"ID":394400,"C":392465,"O":"9","U":"http:\/\/www.etgraphics.co.nz\/vehicle-graphics-car.html","N":"Vehicle Graphics","T":"_top","R":"","RT":"_blank"},"a392466":{"P":392448,"ID":394401,"C":392466,"O":"10","U":"http:\/\/www.etgraphics.co.nz\/window-signage-signs.html","N":"Window Graphics","T":"_top","R":"","RT":"_blank"},"a392457":{"P":392443,"ID":394407,"C":392457,"O":"38","U":"http:\/\/www.etgraphics.co.nz\/self-adhesive-sticky.html","N":"Sticky Labels","T":"_top","R":"","RT":"_blank"},"a451648":{"P":392443,"ID":452343,"C":451648,"O":"39","U":"http:\/\/www.etgraphics.co.nz\/testimonials.html","N":"Testimonials","T":"_top","R":"","RT":"_blank"},"a392454":{"P":392443,"ID":394410,"C":392454,"O":"41","U":"http:\/\/www.etgraphics.co.nz\/website-web-site.html","N":"Web Design","T":"_top","R":"","RT":"_blank"},"a512596":{"P":392443,"ID":512597,"C":512596,"O":"42","U":"http:\/\/www.etgraphics.co.nz\/copier-sale-konica.html","N":"Copier For Sale","T":"_top","R":"","RT":"_blank"}},alignment:"Vertical",animate:0})});var imgSrc={};